body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container img {
  height: 50px;
}

/* Header styles */

header {
  background-color: rgb(231, 140, 4);
  color: #fff;
  padding: 20px;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.5em;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #f7f7f7;
}

/* Maintop section styles */

.maintop-section {
  background-color: #333;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.maintop-section h1 {
  color: #fff;
  font-size: 3rem;
}

/* Contact form section styles */

.contact-form-section {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-image: url('wallpaperflare.com_wallpaper.jpg');
  background-size: cover;
  background-position: center;
  width: auto;
  height: auto;
  background-color: #333;
}

.contact-form-container {
  width: 60%;
  color: #fff;
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
}

textarea {
  resize: none;
}

button[type="submit"] {
  background-color: #f9ae22;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 100px;
}

button[type="submit"]:hover {
  background-color: #555454;
}

.contact-info-container {
  width: 130%;
  padding: 20px;
  color: #f7f7f7;
}

.contact-info-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: #f9ae22;
  margin-right: 10px;
}

.contact-info-item p {
  width: 100%;
  font-size: 1.2rem;
}

/* Footer styles */

footer {
  background-color: rgb(231, 140, 4);
  color: #000000;
  padding: 50px;
}

.footer-text {
  font-weight: bold;
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

.footer-links a:hover {
  color: #000000;
}

.footer-social {
  margin-top: 20px;
}

.footer-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.footer-social li {
  margin-right: 10px;
}

.footer-social a {
  color: #000000;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #000000;
}

.footer-text h3 {
  color: #000000;
  font-size: 2em;
}

/* Media queries for smaller screens */

@media only screen and (max-width: 767px) {
  .container {
      max-width: 100%;
      padding: 0 10px;
  }

  .maintop-section h1 {
      font-size: 2rem;
  }

  .contact-form-container,
  .contact-info-container {
      width: 100%;
  }
}